-
Notifications
You must be signed in to change notification settings - Fork 4
Update non-major dependencies #35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
|
This change updates core dependencies in both Walkthrough
Model: o4-mini | Prompt Tokens: 792 | Completion Tokens: 960 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Your code review includes AI-powered insights to help you improve. These suggestions are possibilities rather than certainties, so pick what suits your project best. You’re in control—AI is simply a supportive tool here to lend guidance as you make the final decisions.
Model: o4-mini | Prompt Tokens: 1346 | Completion Tokens: 1245
| "@sap-ai-sdk/ai-api": "1.16.0", | ||
| "@sap-ai-sdk/orchestration": "1.16.0", | ||
| "@sap-ai-sdk/ai-api": "1.17.0", | ||
| "@sap-ai-sdk/orchestration": "1.17.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see you’re bumping both @sap-ai-sdk/ai-api and @sap-ai-sdk/orchestration to the same exact version. To reduce maintenance overhead when you need to bump these in multiple repos or package files, consider using a workspace or a single source of truth (e.g., a root package.json with a workspaces field) so that both packages stay in sync automatically. If a monorepo is not an option, you could at least extract the SDK version into an environment variable or an npm script to keep bumps atomic across multiple files.
| "octokit": "5.0.3", | ||
| "parse-diff": "0.11.1", | ||
| "zod": "4.0.10" | ||
| "zod": "4.0.14" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You’ve pinned zod to 4.0.14 exactly. To get patch updates automatically (security fixes, minor bug fixes) while avoiding unintended breaking changes, it’s idiomatic to use a caret range, for example:
"zod": "^4.0.14"This way, you’ll pick up all compatible patch releases without changing your code each time.
| "@sap-ai-sdk/ai-api": "1.16.0", | ||
| "@sap-ai-sdk/orchestration": "1.16.0", | ||
| "@sap-ai-sdk/ai-api": "1.17.0", | ||
| "@sap-ai-sdk/orchestration": "1.17.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as above: you’re bumping @sap-ai-sdk/ai-api and @sap-ai-sdk/orchestration in lockstep. If these files exist in parallel, maintain a single source of truth for the SDK version, such as a workspace or a root-level dependency declaration, to avoid accidental drift.
| "octokit": "5.0.3", | ||
| "parse-diff": "0.11.1", | ||
| "zod": "4.0.10" | ||
| "zod": "4.0.14" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider switching zod to a semver range, for example "^4.0.14", so that you automatically receive backward-compatible patch upgrades without manual bumps.
* Update non-major dependencies * Downgrade TypeScript version to 5.8.3 in package.json for compatibility --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Richter <[email protected]>
This PR contains the following updates:
1.16.0->1.17.01.16.0->1.17.022.16.5->22.17.05.8.3->5.9.24.0.10->4.0.14Release Notes
microsoft/TypeScript (typescript)
v5.9.2Compare Source
colinhacks/zod (zod)
v4.0.14Compare Source
Commits:
99391a8Docs: Fix typo (#5005)e25303eDocs: fix typo (#5008)dbb05efAdd JSON Schema draft-04 output (#4811)b8257d7Improve tuple recursive inference.9bdbc2fAvoid infinite loops in defineLazy. Fixes #4994.af96ad44.0.14v4.0.13Compare Source
v4.0.12Compare Source
Commits:
ff83fc9Add eslint-plugin-import-zod (#4848)7c9ce38Update docs for z.property check (#4863)c432577docs: add jwt schema docs (#4867)35e6a6fAdd llms.txt (#4915)3ac7bf0Clean up Edit this Page60a9372Implementllms-full.txt(#5004)73a19704.0.12v4.0.11Compare Source
Commits:
8e6a5f8Fix “Edit on Github” link (#4997)930a2f6Fix number of errors in doc (#4993)c762dbbfeat(locale): Add Yoruba (yo) locale (#4996)9a34a3aZod 4.0.11 (#4981)Configuration
📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.